how to check php string length

62

php string length -

<?php
$str = 'abcdef';
echo strlen($str); // 6

$str = ' ab cd ';
echo strlen($str); // 7
?>

Comments

Submit
0 Comments